home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / QuickTime VR / MacOS / QuickDraw™ 3D 1.0.6F4 SDK / Samples / SampleCode / Unsupported Libraries / Trace_Lib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-05  |  1.1 KB  |  46 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2.  **                                                                             **
  3.  **     Module:        Trace_Lib.h                                                 **
  4.  **                                                                          **
  5.  **                                                                          **
  6.  **     Purpose:                                                               **
  7.  **                                                                          **
  8.  **                                                                          **
  9.  **     Copyright (C) 1992, 1993 Apple Computer, Inc.  All rights reserved.     **
  10.  **                                                                          **
  11.  **                                                                          **
  12.  *****************************************************************************/
  13. #ifndef Trace_Lib_h
  14. #define Trace_Lib_h
  15.  
  16. #include "Escher_Trace_sys.h"    /* This is ok */
  17.  
  18. #if PRAGMA_ONCE
  19.     #pragma once
  20. #endif
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif    /* __cplusplus */
  25.  
  26. /******************************************************************************
  27.  **                                                                             **
  28.  **                             Routines                                         **
  29.  **                                                                             **
  30.  *****************************************************************************/
  31.  
  32. char *TraceString(
  33.     EtTrace trace);
  34.  
  35. char *ComponentString(
  36.     EtComponent component);
  37.  
  38. void InstallDefaultTraceHandler(
  39.     void);
  40.     
  41. #ifdef __cplusplus
  42. }
  43. #endif    /* __cplusplus */
  44.  
  45. #endif /* Trace_Lib_h */
  46.